home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 September (Japanese) / CICA Shareware for Windows CD-ROM (Walnut Creek) (September 1995) (Japanese) (Disc 2).iso / disc2 / nt / source.exe / POSIX / MAKE / LOCALT~1.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-02  |  164 b   |  12 lines

  1. #include <time.h>
  2.  
  3. /*
  4.     referenced C language routine not yet finished by microsoft
  5. */
  6. struct tm *localtime(arg) {
  7.     static struct tm 
  8.         t;
  9.  
  10.     return &t;
  11. }
  12.